home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / stk-3.0 / stk-3 / blt-for-STk-3.0 / blt-1.9 / man / win.man < prev   
Encoding:
Text File  |  1995-07-01  |  2.3 KB  |  64 lines

  1. '\"
  2. '\" Copyright 1993-1994 by AT&T Bell Laboratories.
  3. '\" 
  4. '\" Permission to use, copy, modify, and distribute this software
  5. '\" and its documentation for any purpose and without fee is hereby
  6. '\" granted, provided that the above copyright notice appear in all
  7. '\" copies and that both that the copyright notice and warranty
  8. '\" disclaimer appear in supporting documentation, and that the
  9. '\" names of AT&T Bell Laboratories any of their entities not be used
  10. '\" in advertising or publicity pertaining to distribution of the
  11. '\" software without specific, written prior permission.
  12. '\"
  13. '\" AT&T disclaims all warranties with regard to this software, including
  14. '\" all implied warranties of merchantability and fitness.  In no event
  15. '\" shall AT&T be liable for any special, indirect or consequential
  16. '\" damages or any damages whatsoever resulting from loss of use, data
  17. '\" or profits, whether in an action of contract, negligence or other
  18. '\" tortuous action, arising out of or in connection with the use or
  19. '\" performance of this software.
  20. '\"
  21. '\" Window command created by George Howlett.
  22. '\"
  23. .so man.macros
  24. .HS blt_win cmds
  25. .BS
  26. '\" Note:  do not modify the .SH NAME line immediately below!
  27. .SH NAME
  28. blt_win \- Perform assorted window operations
  29. .SH SYNOPSIS
  30. \fBblt_win raise \fIwindow\fR
  31. .sp
  32. \fBblt_win lower \fIwindow\fR
  33. .sp
  34. \fBblt_win map \fIwindow\fR 
  35. .sp
  36. \fBblt_win unmap \fIwindow\fR 
  37. .BE
  38. .SH DESCRIPTION
  39. .PP
  40. This command performs assorted window operations on Tk windows.
  41. Windows may be raised, lower, map, or unmapped.
  42. .PP
  43. The \fBblt_win\fR command can take any of the following forms:
  44. .TP
  45. \fBblt_win lower \fIwindow\fR 
  46. Lowers a window to the bottom of the X window stack.  \fIWindow\fR must 
  47. be a valid path name of a Tk window.  
  48. .TP
  49. \fBblt_win map \fIwindow\fR 
  50. Maps the window again.
  51. \fIWindow\fR must be the path name of a Tk window.
  52. If \fIwindow\fR is already mapped, this command has no effect.
  53. This command returns the empty string.
  54. .TP
  55. \fBblt_win raise \fIwindow\fR
  56. Raises the window to the top of the X window stack. \fIWindow\fR must be
  57. a valid path name of a Tk window.  This command returns the empty string.
  58. .TP
  59. \fBblt_win unmap \fIwindow\fR 
  60. Unmaps the \fIwindow\fR. \fIWindow\fR must be a valid path name of a Tk
  61. window. This command returns the empty string.
  62. .SH KEYWORDS
  63. window
  64.